ubuntu下搭建nfs服务
参考文档:
[x] http://www.cnblogs.com/mchina...
[x] http://www.linuxidc.com/Linux...
NFS服务器端
1.sudo apt-get install nfs-kernel-server
2.sudo mkdir /home/share/nfs 建立nfs共享文件夹。
3.sudo vi /etc/exports 配置nfs。
4.在文档的最后一行加入/home/song/nfs *(rw,sync,no_root_squash,no_subtree_check),保存退出。
sudo /etc/init.d/rpcbind restart 重启rpcbind
sudo /etc/init.d/nfs-kernel-server restart 重启nfs
NFS客户端
- sudo apt-get install nfs-common
-
sudo service portmap stop
sudo service portmap start
- mkdir /mnt/data
sudo mount -t nfs 192.168.1.122:/home/share/nfs /mnt/data
- 问题:如果出现mount.nfs access denied
只要在服务器端 /etc/exports 中配置中加上insecure
/home/song/nfs *(rw,sync,insecure,no_root_squash,no_subtree_check)
[x] 参考文档:http://blog.chinaunix.net/uid...
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。